aboutsummaryrefslogtreecommitdiff
path: root/src/app/manga/[title]/[id]/[read]/read.module.css
blob: 0133232e719b0a9ca4a44f5c7031c8eb4a839a2c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
.Main {
	margin: 80px auto;
}

.Image {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #1b1b1b;
	border-radius: 10px;
	width: 50%;
	margin: 10px auto;
}

.ImageContainer img {
	max-width: auto;
	height: auto;
	border-radius: 5px;
	margin-top: 10px;
}

.ImageContainer p {
	text-align: center;
	color: white;
	font-family: "Atkinson Hyperlegible", serif;
	font-size: 16px;
	margin: 5px;
}

.NotFound {
	text-align: center;
	color: white;
	font-family: "Atkinson Hyperlegible", serif;
	font-size: 20px;
}

.DownloadMain {
	text-align: center;
}

.DownloadMain button {
	border: none;
	outline: none;
	border-radius: 5px;
	padding: 5px;
	font-family: "Atkinson Hyperlegible", serif;
	font-size: 16px;
	background-color: var(--light-green);
	cursor: pointer;
}

.DownloadMain button:hover {
	background-color: var(--pastel-red);
}

@media screen and (max-width: 768px) {
	.ImageContainer img {
		width: 95%;
		align-items: center;
	}

	.Image {
		width: 100%;
	}
}